home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / INTERNET / SITES / GRAHAM / XA_6S.ZIP / SOURCE / OP_NAMES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-27  |  3.0 KB  |  96 lines

  1. /* Standard GEM AES op-codes - sensible names for diags */
  2.  
  3. #if GENERATE_DIAGS
  4.  
  5. #define MAX_NAMED_DIAG 130
  6.  
  7. char *op_code_names[]={"","","","","","","","","","",    /* 0-9 */
  8.                         "appl_init",                    /* 10 */
  9.                         "appl_read",                    /* 11 */
  10.                         "appl_write",                    /* 12 */
  11.                         "appl_find",                    /* 13 */
  12.                         "appl_tplay",                    /* 14 */
  13.                         "appl_trecord",                    /* 15 */
  14.                         "","","",                        /* 16-18 */
  15.                         "appl_exit",                    /* 19 */
  16.                         "evnt_keybd",                    /* 20 */
  17.                         "evnt_button",                    /* 21 */
  18.                         "evnt_mouse",                    /* 22 */
  19.                         "evnt_mesag",                    /* 23 */
  20.                         "evnt_timer",                    /* 24 */
  21.                         "evnt_multi",                    /* 25 */
  22.                         "","","","",                    /* 26-29 */
  23.                         "menu_bar",                        /* 30 */
  24.                         "menu_icheck",                    /* 31 */
  25.                         "menu_ienable",                    /* 32 */
  26.                         "menu_tnormal",                    /* 33 */
  27.                         "menu_text",                    /* 34 */
  28.                         "menu_register",                /* 35 */
  29.                         "?","?","?","?",                /* 36-39 */
  30.                         "objc_add",                        /* 40 */
  31.                         "objc_delete",                    /* 41 */
  32.                         "objc_draw",                    /* 42 */
  33.                         "objc_find",                    /* 43 */
  34.                         "objc_offset",                    /* 44 */
  35.                         "objc_order",                    /* 45 */
  36.                         "objc_edit",                    /* 46 */
  37.                         "objc_change",                    /* 47 */
  38.                         "","",                            /* 48-49 */
  39.                         "form_do",                        /* 50 */
  40.                         "form_dial",                    /* 51 */
  41.                         "form_alert",                    /* 52 */
  42.                         "form_error",                    /* 53 */
  43.                         "form_center",                    /* 54 */
  44.                         "form_keybd",                    /* 55 */
  45.                         "form_button",                    /* 56 */
  46.                         "","","",                        /* 57-59 */
  47.                         "","","","","","","","","","",    /* 60-69 */
  48.                         "graf_rubberbox",                /* 70 */
  49.                         "graf_dragbox",                    /* 71 */
  50.                         "graf_movebox",                    /* 72 */
  51.                         "graf_growbox",                    /* 73 */
  52.                         "graf_shrinkbox",                /* 74 */
  53.                         "graf_watchbox",                /* 75 */
  54.                         "graf_slidebox",                /* 76 */
  55.                         "graf_handle",                    /* 77 */
  56.                         "graf_mouse",                    /* 78 */
  57.                         "graf_mkstate",                    /* 79 */
  58.                         "scrap_read",                    /* 80 */
  59.                         "scrap_write",                    /* 81 */
  60.                         "","","","","","","","",        /* 82-89 */
  61.                         "fsel_input",                    /* 90 */
  62.                         "fsel_exinput",                    /* 91 */
  63.                         "","","","","","","","",        /* 92-99 */
  64.                         "wind_create",                    /* 100 */
  65.                         "wind_open",                    /* 101 */
  66.                         "wind_close",                    /* 102 */
  67.                         "wind_delete",                    /* 103 */
  68.                         "wind_get",                        /* 104 */
  69.                         "wind_set",                        /* 105 */
  70.                         "wind_find",                    /* 106 */
  71.                         "wind_update",                    /* 107 */
  72.                         "wind_calc",                    /* 108 */
  73.                         "wind_new",                        /* 109 */
  74.                         "rsrc_load",                    /* 110 */
  75.                         "rsrc_free",                    /* 111 */
  76.                         "rsrc_gaddr",                    /* 112 */
  77.                         "rsrc_saddr",                    /* 113 */
  78.                         "rsrc_obfix",                    /* 114 */
  79.                         "","","","","",                    /* 115-119 */
  80.                         "shel_read",                    /* 120 */
  81.                         "shel_write",                    /* 121 */
  82.                         "shel_get",                        /* 122 */
  83.                         "shel_put",                        /* 123 */
  84.                         "shel_find",                    /* 124 */
  85.                         "shel_envrn",                    /* 125 */
  86.                         "","","","",                    /* 126-129 */
  87.                         "appl_getinfo"                    /* 130 */
  88.                 };
  89.  
  90. #else
  91.  
  92. char *op_code_names[]={"","","","","","","","","",""};
  93. #define MAX_NAMED_DIAG 0
  94.  
  95. #endif
  96.